home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950329-19950528 / 000111_news@columbia.edu_Tue Apr 11 16:08:36 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA23538
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Apr 1995 02:07:56 -0400
  3. Received: by apakabar.cc.columbia.edu id AA20028
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Apr 1995 02:07:54 -0400
  5. Path: news.columbia.edu!sol.ctr.columbia.edu!howland.reston.ans.net!swrinde!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: resize (Re: Clobbering the Last Line)
  9. Message-Id: <1995Apr11.220837.47260@cc.usu.edu>
  10. Date: 11 Apr 95 22:08:36 MDT
  11. References: <1995Mar28.230356.88847@kuhub.cc.ukans.edu>  <3me4ll$hvf@kronos.fmi.fi>
  12. Organization: Utah State University
  13. Lines: 44
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <3me4ll$hvf@kronos.fmi.fi>, hurtta@dionysos.fmi.fi (Kari E. Hurtta) writes:
  17. > jrd@cc.usu.edu (Joe Doupnik) writes in comp.protocols.kermit.misc:
  18. > ;In article <3m0fa8$53k@kronos.fmi.fi>, hurtta@dionysos.fmi.fi (Kari E. Hurtta) writes:
  19. > ;> By to way. This didn't work correctly with MS-DOS KERMIT VERSION 3.14.
  20. > ;> (It works correctly with earlier Kermit version). Is this corrected?
  21. > ;> 
  22. > ;> (I mentioned this somewhere in January 1995, but I missed possible answers.
  23. > ;>  This news server works quite unreliable.)
  24. > ;    I'm not quite sure what the "this" is in "this didn't work correctly"
  25. > ;above. Works fine here to Unix machinery and VAXen etc. Perhaps you'd care
  26. > ;to repeat the observations after checking the characteristics of your Unix
  27. > ;host.
  28. > I noticed that problem first with my program, which uses same kind 
  29. > method than resize for determining screen size. But that problem
  30. > is visible also with 'resize' -program.
  31. > With MS-DOS KERMIT 3.10 output of resize is correct:
  32. > set noglob;
  33. > setenv COLUMNS '80';
  34. > setenv LINES '24';
  35. > unset noglob;
  36. > With MS-DOS KERMIT 3.14 output of resize is incorrect:
  37. > set noglob;
  38. > setenv COLUMNS '80';
  39. > setenv LINES '231';
  40. > unset noglob;
  41. > [ Answer cc'ed to Joe Doupnik. ]
  42. > --
  43. > - Kari E. Hurtta                             /  Eldmd on monimutkaista
  44. >   Kari.Hurtta@FMI.FI                 puh. (90) 1929 658
  45. >   {hurtta,root,Postmaster}@dionysos.FMI.FI
  46. ------------
  47.     It's a known problem, a bug if you wish. The problem is the
  48. resize program tries to drive the cursor to the extreme lower right
  49. by extraordinary amounts. The requested column is greater than 255
  50. and unfortunately the column variable in the calculation is only
  51. one byte wide. This results in modulo 255 work, keeping the remainder
  52. for the column. There will be a patch for this in the near future.
  53.     Joe D.